PowerTools SPREAD for ASP.NET 8.0J
ListBoxCellType コンストラクタ(String[])

リストの項目(文字列配列)
リスト項目を指定して、新しいリスト ボックス型セルを作成します。
構文
'Declaration
 
Public Function New( _
   ByVal items() As String _
)
public ListBoxCellType( 
   string[] items
)

パラメータ

items
リストの項目(文字列配列)
この例では、リストボックス型のセル型を作成し、リストの項目の配列を設定します。次に、選択した項目の背景色と前景色を設定し、このオブジェクトをシートの先頭セルに割り当てます。
    FarPoint.Web.Spread.ListBoxCellType lbcell = new FarPoint.Web.Spread.ListBoxCellType(new String[] {"Carbon", "Oxygen",
"Hydrogen"});
    lbcell.SelectedBackColor = Color.Yellow;
    lbcell.SelectedForeColor = Color.DarkBlue;
    FpSpread1.ActiveSheetView.Cells[0, 0].CellType = lbcell;
    FpSpread1.ActiveSheetView.Rows[0].Height = 140;
Dim lbcell As New FarPoint.Web.Spread.ListBoxCellType(New String() {"Carbon", "Oxygen", "Hydrogen"})
lbcell.SelectedBackColor = Color.Yellow
lbcell.SelectedForeColor = Color.DarkBlue
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = lbcell
FpSpread1.ActiveSheetView.Rows(0).Height = 140
参照

ListBoxCellType クラス
ListBoxCellType メンバ
オーバーロード一覧
Items プロパティ

 

 


© 2003-2015, GrapeCity inc. All rights reserved.